home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / pyshared / pyme / version.py < prev   
Encoding:
Text File  |  2008-11-24  |  1.7 KB  |  42 lines

  1. # $Id: version.py,v 1.10 2008/11/24 21:44:30 belyi Exp $
  2.  
  3. productname = 'pyme'
  4. versionstr = "0.8.1"
  5. revno = long('$Rev: 281 $'[6:-2])
  6. revstr = "Rev %d" % revno
  7. datestr = '$Date: 2008/11/24 21:44:30 $'
  8.  
  9. versionlist = versionstr.split(".")
  10. major = versionlist[0]
  11. minor = versionlist[1]
  12. patch = versionlist[2]
  13. copyright = "Copyright (C) 2004,2008 Igor Belyi, 2002 John Goerzen"
  14. author = "Igor Belyi"
  15. author_email = "belyi@users.sourceforge.net"
  16. description = "Python support for GPGME GnuPG cryptography library"
  17. bigcopyright = """%(productname)s %(versionstr)s (%(revstr)s)
  18. %(copyright)s <%(author_email)s>""" % locals()
  19.  
  20. banner = bigcopyright + """
  21. This software comes with ABSOLUTELY NO WARRANTY; see the file
  22. COPYING for details.  This is free software, and you are welcome
  23. to distribute it under the conditions laid out in COPYING."""
  24.  
  25. homepage = "http://pyme.sourceforge.net"
  26. license = """Copyright (C) 2004,2008 Igor Belyi <belyi@users.sourceforge.net>
  27. Copyright (C) 2002 John Goerzen <jgoerzen@complete.org>
  28.  
  29. This library is free software; you can redistribute it and/or
  30. modify it under the terms of the GNU Lesser General Public
  31. License as published by the Free Software Foundation; either
  32. version 2.1 of the License, or (at your option) any later version.
  33.  
  34. This library is distributed in the hope that it will be useful,
  35. but WITHOUT ANY WARRANTY; without even the implied warranty of
  36. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  37. Lesser General Public License for more details.
  38.  
  39. You should have received a copy of the GNU Lesser General Public
  40. License along with this library; if not, write to the Free Software
  41. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA"""
  42.